home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-12-05 | 1.1 KB | 35 lines | [TEXT/CWIE] |
- // File "sample win.h" -
-
- #ifndef ____SAMPLE_WIN_HEADER____
- #define ____SAMPLE_WIN_HEADER____
-
- #ifndef __DRAG__
- #include <Drag.h>
- #endif __DRAG__
-
- // * ****************************************************************************** *
- // * ****************************************************************************** *
-
- // By suggestion, I have separated the Fat WDEF into 2 parts to lower
- // the memory footprint of the FBA.
-
- #if !GENERATINGPOWERPC
- #define kWDEFProcID 2048 /* 68K Infinity Windoid - 128 * 16 */
- #else
- #define kWDEFProcID 2064 /* PPC Infinity Windoid - 129 * 16 */
- #endif
-
- // * ****************************************************************************** *
- // * ****************************************************************************** *
- // Function Prototypes
-
- WindowPtr NewSampleWindow(void);
- void DisposeSampleWindow(WindowPtr win);
- void SampleWindowEventHandler(EventRecord *theEvent, WindowPtr win);
-
- void SetSampleWindowText(WindowPtr win, StringPtr winText);
- StringPtr GetSampleWindowText(WindowPtr win);
-
- #endif ____SAMPLE_WIN_HEADER____
-
-